home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / Raven 1.2.sit / Raven 1.2 / • Extras • / SGI STL / README.BC < prev    next >
Text File  |  1997-06-02  |  2KB  |  42 lines

  1. Note For Borland C++ Users
  2.  
  3. ----------------------------------------------------------------------------
  4.  
  5. Known problems
  6.  
  7. Compiling
  8.  
  9.    * You may encounter problems with too long symbols when compiling with
  10.      debug information. To handle this, try defining __STL_USE_ABBREVS in
  11.      stlcomp.h.
  12.    * If your program is multi-threaded, be sure to define macro
  13.      __STL_WIN32THREADS for proper synchronization (if you are using SGI
  14.      node allocator. If you are using new_alloc or malloc_alloc, you won't
  15.      need that).
  16.    * You may encounter problems using new-style BC++ 5.0 headers like
  17.      <iostream>, <string> in mix with SGI STL. For version 5.01, the
  18.      following should be done to avoid possible conflicts:
  19.         o copy the STL header memory to memory.h (That is not done by
  20.           default, since it may introduce conflicts with C-style memory.h)
  21.         o copy the STL header algorith to algorith.h
  22.         o You may also want to download auto_ptr implementation and add it
  23.           to memory[.h] .
  24.  
  25. ----------------------------------------------------------------------------
  26.  
  27. Migration notes
  28.  
  29. You should experience no other problems migrating from BC++ STL to SGI STL.
  30. Default allocator<T> in this adaptation should be fully functional.
  31.  
  32. ----------------------------------------------------------------------------
  33.  
  34. Versions prior to 5.0
  35.  
  36. Borland C++ versions older than 5.0 have not been tested. STL. Probably it
  37. would work with 4.5 and higher.
  38.  
  39. ----------------------------------------------------------------------------
  40.  
  41. Last updated : May 25, 1997.
  42.